
.login-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
}

.login-containering {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    animation: fadeIn 0.5s ease-in-out;
    box-sizing: border-box;
    overflow: hidden;
}

.login-containering h1 {
    font-size: 28px;
    color: #31b1b8;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.login-containering label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.login-containering input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.login-containering input:focus {
    border-color: #007bff;
    outline: none;
}

.login-btn2 {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    background-color: #31b1b8;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.login-btn2:hover {
    background-color: #238085;
}

.social-login {
    margin: 25px 0;
}

.line-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #777;
    font-size: 14px;
}

.line-title .line {
    flex: 1;
    height: 1px;
    background-color: #ddd;
    margin: 0 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s;
}

.social-icons button img {
    width: 35px;
    height: 35px;
    border-radius: 20%;
}

.social-icons button:hover {
    transform: scale(1.1);
}

.signup-prompt {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.signup-prompt a {
    color: #31b1b8;
    text-decoration: none;
}

.signup-prompt a:hover {
    text-decoration: underline;
}

.find-links {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.find-links a {
    color: #555;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.find-links a:hover {
    color: #555;
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
