body {
    height: 100svh;
    width:100%;
    overflow: hidden;
    background-color: #171717;
    /* background-color: #0f1923; */
    color:white;
}

p {
    padding:0;
    margin:0;
}

h5 {
    margin:0;
}

#login{
    display:none;
    height:100%;
    align-content: center;
    align-items:center;
    justify-content:center;
    animation: fadeIn 2s ease;
}


.login_formContainer{
    /* animation: fadeIn 2s ease; */
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content: center;
    text-align: center;
    position:relative;
    font-family: 'Nunito-Medium';
    background-color: #171717;
    width:30%;
    height:100%;

}

.login_form{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content: flex-start;
    text-align: center;
    width:60%;
}

#loginTitle{
    visibility:hidden;
    margin-top:15px;
    margin-bottom:15px;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid #7881a1; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */

    /* animation: 
      typing 1.2s steps(30, end),
      blink-caret 1s step-end infinite; */
}

.loginTitleTypinganimation{
    animation: 
    typing 1.2s steps(30, end),
    blink-caret 1s step-end infinite;
}


input {
    border-style: none;
    background: transparent;
    outline: none;
}

button {
    padding: 0;
    background: none;
    border: none;
    outline: none;
}


.inputField {
    display: flex;
    flex-direction: row;
    align-items:center;
    width: 100%;
    border-radius: 2px;
    margin-bottom:15px;
    /* border-bottom: 1px solid rgba(57, 63, 84, 0.8); */
    border-bottom: 1px solid rgba(76,176,80,0.2);
}

.inputField:focus-within{
    border-bottom: 1px solid rgb(76,176,80);
}

#usernameinput, #passwordinput {
    text-align:left;
    /* color: #bfd2ff; */
    color: rgb(80, 200, 120);
    width:95%;
    padding:5px;
}



#passwordreveal{
    display:flex;
    align-items:center;
}

#passwordeye{
    color: white;
    margin-right: 5px;
    text-align: center;
    width:5%;
}


#usernameinput::-webkit-input-placeholder {
    /* color: #7881a1; */
    color: rgba(76,176,80,0.4);
}

#passwordinput::-webkit-input-placeholder {
    /* color: #7881a1; */
    color: rgba(76,176,80,0.4);
}


#usernameinput:focus::-webkit-input-placeholder {
    /* color: #bfd2ff; */
    color: rgb(80, 200, 120);

}
#passwordinput:focus::-webkit-input-placeholder {
    /* color: #bfd2ff; */
    color: rgb(80, 200, 120);

}


.login_rememberField{
    display:flex;
    align-items:center;
    vertical-align: middle;
    padding-top:10px;
    padding-bottom:10px;
    width:60%;

}

/* .copyrightlabelField{
    position:absolute;
    bottom:5px;
    background-color:transparent;
    align-items: center;
    width:100%;
}

.copyrightlabelField p{
    display:flex;
    flex-direction: row;
    align-items: center;
}

.copyrightlabelField p:before, .copyrightlabelField p:after{
    content: "";
    flex: 1 1;
    border-bottom: 1px solid;
}

.copyrightlabelField p:before {
    margin-left: 50px;
    margin-right: 10px;
  }
  .copyrightlabelField p:after {
    margin-left: 10px;
    margin-right:50px;
  } */




.login-buttonField{
    margin-top:30px;
    width:12vw;
}

.login-button{
    border-color: #7881a1 ;
    font-family: 'Inter-Light';
    font-size:13px;
    height:50%;
    width:100%;
    color: white;
    background-color: rgba(120,129,161,0.3);
}

.login-button:hover{
    background-color: rgba(54, 69, 79,0.3);

}


#login_space{
    background-color: #0f1923;
    background-image: url('../images/wallpaper_edited.jpg') ;
    /* display:flex;
    align-items:center;
    justify-content: center; */
    display:flex;
    align-items:center;
    padding-left:10px;

    /* background-image: radial-gradient(circle at 0% 0%, #373b52, #252736 51%, #1d1e26); */
    background-size:cover;
    /* background-color: #081b29; */
    width:70%;
    height:100%;
}

.custom-card{
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-title-color: ;
    --bs-card-subtitle-color: ;
    --bs-card-border-width: var(--bs-border-width);
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: var(--bs-border-radius);
    --bs-card-box-shadow: ;
    --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
    --bs-card-cap-color: ;
    --bs-card-height: ;
    --bs-card-color: ;
    --bs-card-bg: var(--bs-body-bg);
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-body-color);
    word-wrap: break-word;
    /* background-color: var(--bs-card-bg); */
    background-clip: border-box;
    /* border: var(--bs-card-border-width) solid var(--bs-card-border-color); */
    border-radius: var(--bs-card-border-radius);
}

.card-header{   /*cannot create custom classes due to class child biding*/
    background-color:#1c1c20;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 16px;
}

.card-body{
    font-family:'Nunito-Regular';
    background-color: #1c1c20;
    color:white;
}

.card-footer{
    font-family:'Inter-Regular';
    background-color: white;
    border-top:none;
    color:white;
}

.form-check-input:checked{
    background-color: rgb(76,176,80);
    border-color: rgb(76,176,80);
}

.custom-login-carousel-indicators{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}



/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: rgb(80, 200, 120); }
}

@keyframes fadeIn{
0%{opacity: 0.5;}
100%{opacity: 1;}
}

