:root {
    --backgound-color: linear-gradient(45deg, #0e0e0e, #001235, #0e0e0e);
    --theme-text-color: #d4ecff;
    --theme-link-color: #84a3bc;
    --theme-hover-color: white;
    --theme-color:#001235;
    --placeholder-color: rgba(132, 163, 188, 0.5);
}

body {
    font-family: "Sansation", sans-serif;
    background-image: var(--backgound-color);
    height: 100vh;
    width: 100vw;
    color: var(--theme-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

p, h1, h2, h3, h4, h5, h6, ul, ol, li {
    margin: 0;
    padding: 0;
}
.logo{
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 48px;
}

.theme-button-outline{
    background: transparent;
    color: var(--theme-text-color);
    border: 1px solid var(--theme-text-color);
}
.theme-button-outline:hover{
    color: var(--theme-color);
    border: 1px solid var(--theme-hover-color);
    background: var(--theme-text-color);
}
a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: var(--theme-link-color);
}

a:hover {
    color: var(--theme-hover-color);
}
fieldset {
    position: relative;
    border: 1px solid #01266d;
    border-radius: 8px;
    padding: 36px 24px 24px 24px;
}


legend {
    position: absolute;
    top: 0;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    font-weight: bolder;
    color: var(--theme-color);
    background: white;
    width: fit-content;
    padding: 0 16px;
    font-size: 24px;
}
.required{
    color: red;
    font-weight: bolder;
    font-size: 18px;
}

label{
    color: var(--theme-text-color);
    margin-bottom: 8px;
    text-transform: capitalize;
}
.form-control, .form-select{
    background-color:transparent;
    color: var(--theme-text-color)!important;
}
.form-control:focus, .form-select:focus{
    border-color: var(--theme-text-color);
    background:transparent;
    box-shadow: none;
    outline: var(--theme-color);
}
::placeholder{
    color: var(--placeholder-color)!important;
}
.profile-photo-display-area{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 4px;
    border: 1px solid var(--theme-text-color);
}
.profile-photo-display-area img{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 4px;
    object-fit: cover;
}
.validation-message {
    color: red;
    font-size: 12px;
    position: absolute;
    right: 0;
    bottom: -20px;
    text-align: right;
}
#toggle-password{
    cursor: pointer;
}
.validation-message {
    color: red;
    font-size: 12px;
    position: absolute;
    bottom: -20px;
}


