.d-flex {
    display: flex;
}

.f-col {
    display: flex;
    flex-direction: column;
}

.f-row {
    display: flex;
    flex-direction: row;
}

.h-center {
    justify-content: center;
}

.v-center {
    align-items: center;
}

.h-start {
    justify-content: flex-start;
}

.v-start {
    align-items: flex-start;
}

.h-end {
    justify-content: flex-end;
}

.v-end {
    align-items: flex-end;
}

.navy-blue-bnb {
    color: #003E61;
}

.w-full {
    width: 75%;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-25 {
    gap: 25px;
}

label {
    color: #003E61;
    font-weight: 600;
    font-size: 12px;
}

h1 {
    color: #003E61;
    font-weight: 600;
    font-size: 32px;
}

.text-field {
    height: 40px;
    border-radius: 4px;
    border: 1px solid #003E614D;
    padding-right: 10px;
    padding-left: 10px;
    outline: none;
}

.link-input {
    border: none;
    cursor: pointer;
    color: #003E61;
    outline: none;
}

.side-spacing-10 {
    margin-right: 10%;
    margin-left: 10%;
}

.side-spacing {
    margin-right: 10%;
    margin-left: 10%;
    text-align: center;
}



.rounded-borders {
    border-radius: 20px;
}


.login-button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

.text-field:focus {
  border-color: #3498db; /* Border color when input is focused */
}

/* Custom outline effect */
.text-field::before,
.text-field::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 5px solid transparent; /* Make the original border transparent */
  border-radius: 5px;
  pointer-events: none; /* Ensure clicks pass through the pseudo-elements */
}

.text-field::before {
  border-color: #3498db; /* Outline color */
}

.text-field::after {
  border-color: #3498db; /* Outline color */
}

 /*
.text-field:focus-within {
    border: 3px solid #3498db;
    border-radius: 4px;
} */

.text-general {
    color: black;
}

.notice-text {
    font-size: 10px;
}

.f-12 {
    font-size: 12px;
}

.up-down-spacing {
    margin-top: 20px;
    margin-bottom: 20px;
}

.down-spacing {
    margin-bottom: 20px;
}

.register-link {
    color: black;
    font-size: 14px;
}

.t-end {
    text-align: end;
}

.t-start {
    text-align: start;
}

.t-center {
    text-align: center;
}

.logo-container {
    padding-bottom: 5vh;
}

.register-input {
    width: 70px;
    text-align: end;
}

.login-input {
    width: 35px;
    text-align: end;
}

label {
    margin-left: 0px !important;
}

.select-box {
    -webkit-appearance: none;
    color: #9b9b9b;
}

 .bg-contain {
    background-image: url(../images/bg2.jpg); 
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh; 
    padding: 20px; 
    box-sizing: border-box; 
    background-position: center;
} 

.login-button {
    background-color: #003E61;
    color: white;
    border: none;
    border-radius: 4px;
    height: 45px;
    font-size: 14px;
    cursor: pointer;
    transition-property: transform;
    transition-duration: .3s;
}

.option-box {
    border:1px solid #003E6126;
    border-radius:4px;
}

.year-option-box {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.dollar-labels {
    color: #003E61;
    font-weight: 600;
    font-size: 26px;
}
 .save-label {
    background-color: #003E6126;
    border-radius: 4px;
    color: #003E61;
    padding: 5px;
    font-size: 14px;
    padding-right: 5px;
 }


 .wyt-login-box {
    background-color: white;
    max-width: 50%;
    margin: auto;
}


@media (max-width: 768px) {
    .wyt-login-box {
        max-width: 80%;
    }
}

@media (max-width: 576px) {
    .RegisterFrm .f-row {
        flex-wrap: wrap;
    }

    .wyt-login-box h1 {
        font-size: 23px;
        padding: 0 5%;
    }

    .wyt-login-box .w-full {
        width: 90%;
    }

    .wyt-login-box p {
        font-size: 14px;
    }

    .wyt-login-box .gap-5 {
        margin-bottom: 20px;
    }

    .c-left-s, .c-right-s {
        width: 100% !important;
    }

    .gap-25 {
        gap: 0;
    }
}
 