* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: white;
}

.form-container {
    flex: 1;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.logo img {
    height: 32px;
    margin-bottom: 40px;
}

h1 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #111827;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 16px;
    background-color: #F9FAFB;
}

.form-input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9CA3AF;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    width: 100%;
}

.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4B5563;
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
    /* Add custom checkbox styles if needed */
}

.forgot-password {
    color: #4F46E5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary {
    width: 100%;
    height: 36px;
    /* Set height to 36px as requested */
    background-color: #3B82F6;
    /* Blue color */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 16px;
    margin-bottom: 24px;
}

/* Remove the hover effect */
.btn-primary:hover {
    background-color: #3B82F6;
    /* Same as non-hover state */
}

.divider {
    text-align: center;
    margin: 24px 0;
    color: #6B7280;
    font-size: 14px;
    position: relative;
}

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

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.social-buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-social {
    flex: 1;
    height: 44px;
    border: 1px solid #D1D5DB;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-social:hover {
    background-color: #3B82F6;
    /* Bright blue background */
    border-color: #3B82F6;
    /* Bright blue background */
}

.btn-google {
    color: #EA4335;
}

.btn-linkedin {
    color: #0A66C2;
}

.sign-up-link {
    text-align: center;
    font-size: 14px;
    color: #374151;
}

.sign-up-link a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 500;
}

.decoration-container {
    flex: 1;
    background-color: #0F172A;
    position: relative;
    overflow: hidden;
}

.decoration-container::before,
.decoration-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.decoration-container::before {
    width: 300px;
    height: 300px;
    background-color: #0A66C2;
    top: -100px;
    right: -100px;
    transform: rotate(45deg);
}

.decoration-container::after {
    width: 200px;
    height: 200px;
    background-color: #F472B6;
    bottom: 50px;
    right: 50px;
}

.form-content {
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .form-container {
        max-width: 100%;
        padding: 40px 20px;
    }

    .decoration-container {
        display: none;
    }
}

/* Settings page styles */
.settings-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.settings-container h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.settings-container p {
    margin-bottom: 20px;
}

.settings-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.settings-list li {
    margin-bottom: 10px;
}

.settings-list a {
    color: blue;
    text-decoration: none;
}

.settings-container h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
}

button[type="submit"] {
    background-color: #0A66C2;
    border: 1px solid#0A66C2;
    padding: 5px 10px;
    cursor: pointer;
}

/* You can remove or comment out the styles that are not needed for this simple design */

.error-message {
    background-color: #FEE2E2;
    border: 1px solid #F87171;
    color: #B91C1C;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
}
