.login-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background: rgb(249, 249, 250);
}

.login-container {
    background: #fff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
}

.login-container h1 {
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: rgb(233, 233, 233);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-2);
    background-color: #fff;
}

.form-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.btn-login {
    width: 100%;
    background-color: var(--accent-2);
    font-family: var(--arabic-font);
    color: white;
    font-weight: 700;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.btn-login:hover {
    background-color: var(--accent);
}

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    gap: 10px;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    margin-top: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.btn-google:hover,
.btn-google:hover img {
    background-color: #f8f8f8 !important;
}

.btn-google img {
    width: 20px;
    height: 20px;
    background: transparent;
}

.forgot-password {
    font-size: 0.85rem;
    text-decoration: none;
    color: #666;
}

.forgot-password:hover {
    color: var(--accent-2);
}

/* Responsive design */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }
}

/* Hide the default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create the custom box */
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    position: relative;
}

/* The box itself */
.custom-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #ccc;
    background-color: rgb(233, 233, 233);
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

/* On hover */
.custom-checkbox:hover .checkmark {
    border-color: var(--accent-2);
}

/* When checked */
.custom-checkbox input:checked+.checkmark {
    background-color: var(--accent-2);
    border-color: var(--accent-2);
}

/* Add the checkmark symbol */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg) scale(0.5);
    transition: all 0.2s ease;
}

/* Show checkmark when checked */
.custom-checkbox input:checked+.checkmark::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}