.nav-container {
    background-position: right center !important;
}

form {
    width: 460px;
    margin-top: 80px;
    max-width: 95%;
}

.upper-text {
    font-weight: 500;
    color: #7F7F7F;
}

.upper-text a {
    color: #398300;
    cursor: pointer;
    font-weight: 700;
}

.custom-input,
.custom-input:focus {
    height: 38px;
    border-radius: 10px;
    background: #F1F1F1;
    border: none;
}

label {
    font-weight: 500;
    color: #398300;
    margin-left: 18px;
    margin-bottom: 16px;
}

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

.social-icons {
    margin-top: 24px;
    margin-bottom: 74px;
}

.password-container {
    position: relative;
}

.password-toggle-icon {
    position: absolute;
    top: 49px;
    right: 11px;
}

.social-button {
    cursor: pointer;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 25% !important;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #D9D9D9;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0px;
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    background-color: #398300;
    border-radius: 25%;
    transform: translate(-50%, -50%);
}