.login-container {
    border-top: 2px solid #1b7e53;
    background-color: #fff;
    margin: 20px auto 0px;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    display: flex;
    gap: 3rem;
}

.login-form, .login-social {
    flex: 1;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    color: #555;
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
}

input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.links a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.875rem;
}

.links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.form-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.form-button:hover {
    background-color: #0056b3;
}

.social-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    color: #555;
    font-size: 0.875rem;
}

.social-divider::before,
.social-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
}

.social-divider::before {
    left: 0;
}

.social-divider::after {
    right: 0;
}

.google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.google-button img {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.google-button:hover {
    background-color: #f8f9fa;
}

.signup-container {
    border-top: 2px solid #1b7e53;
    background-color: #fff;
    margin: 20px auto 0px;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    display: flex;
    gap: 3rem;
}

.user-one-form {
    flex: 1;
}


.text-footer {
    padding: 8px 0px;
}

.text-footer a {
    text-decoration: none;
}

.links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.user-one-form .text-footer {
    text-align: center;
}

@media (max-width: 600px) {
    .login-container {
        flex-direction: column;
        margin: 1rem;
        padding: 1.5rem;
        width: calc(100% - 2rem);
        gap: 0;
    }
    
    .login-form {
        border-top: 2px solid #333;
        padding-top: 2rem;
        margin-top: 2rem;
    }
    
    .signup-container {
        flex-direction: column;
        margin: 1rem;
        padding: 1.5rem;
        width: calc(100% - 2rem);
        gap: 0;
    }
    
    .user-one-form {
        border-top: 2px solid #333;
        padding-top: 2rem;
        margin-top: 2rem;
    }
}

