

.login-page {
    display: flex;
    width: 100%;
    max-width: 1000px;
    min-height: 400px;
}

.login-container {
    width: 50%;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 320px;
}

    .form-container h1 {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group input {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
        outline: none;
    }

.error-message {
    color: #ff0033;
    font-size: 12px;
    margin-bottom: 15px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.remember-option {
    color:black;
    display: flex;
    align-items: center;
}

    .remember-option input {
        margin-right: 5px;
    }

.forgot-link {
    color: #0d3d8d;
    text-decoration: none;
}

.login-button {
    width: 100%;
    padding: 10px;
    background-color: #0d3d8d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
}

.account-option {
    display:flex;
    color:black;
    font-size: 13px;
    margin-bottom: 20px;
}

.create-link {
    color: #0d3d8d !important;
    text-decoration: none;
    margin-left: 80px;
}

.divider {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

    .divider::before,
    .divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 45%;
        height: 1px;
        background-color: #ddd;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

    .divider span {
        display: inline-block;
        padding: 0 10px;
        background-color: white;
        position: relative;
        z-index: 1;
        color: #777;
        font-size: 13px;
    }

.google-button {
    width: 100%;
    padding: 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

    .google-button img {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }

.content-container {
    width: 80%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

    .content-container h1 {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .content-container p {
        font-size: 18px;
        line-height: 42.67px;
    }

@media (max-width: 768px) {
    .login-page {
        flex-direction: column;
    }

    .login-container,
    .content-container {
        width: 100%;
    }

    .login-container {
        border-radius: 10px 10px 0 0;
    }

    .content-container {
        text-align: center;
        padding: 30px;
    }
}
