@font-face {
    font-family: 'B Yekan';
    src: url('../font/BYekan.eot');
    src: url('../font/BYekan.eot?#iefix');
    src: url('../font/BYekan.woff');
    src: url('../font/BYekan.ttf');
}

body {
    font-family: 'B Yekan', serif;
    background-color: rgb(13, 27, 42);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
}


.navbar {
    background-color: rgb(8, 16, 25) ;
}
.navbar-brand img {
    margin-left: 8px;
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 15px;
}

.login-card {
    background-color: lch(17.18% 16.69 273.54);
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid rgb(0, 207, 232);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

.title {
    font-family: 'B Yekan', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.underline {
    width: 10rem;
    height: 0.2rem;
    background-color: rgb(0, 207, 232);
    margin: 0.5rem auto 1.5rem;
}

.form-label {
    color: white;
    font-family: 'B Yekan', serif;
    margin-bottom: 0.5rem;
    
}

.form-control {
    font-family: 'B Yekan', serif;
    background-color: rgb(13, 27, 42);
    border-color: rgb(0, 207, 232);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
}

.form-control::placeholder {
    color: rgb(160, 184, 207);
    opacity: 1;
}

.form-control:focus {
    background-color: rgb(13, 27, 42);
    box-shadow: 0 0 0 0;
    color: white;
}

.input-group-text {
    background-color: rgb(0, 207, 232);
    border-color: rgb(0, 207, 232);
    color: rgb(13, 27, 42);
    border-radius: 1rem;
}
.input-group-text i {
    color: rgb(13, 27, 42);
}

.btn-login {
    font-family: 'B Yekan', serif;
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
    background-color: rgb(0, 207, 232);
    border-color: rgb(0, 207, 232);
    color: rgb(13, 27, 42);
    font-weight: bold;
    transition: all 0.5s;
}
.btn-login:hover {
    background-color: rgb(0, 169, 192);
    border-color: rgb(0, 169, 192);
    color: rgb(13, 27, 42);
    border-radius: 1rem;
    /* box-shadow: 0 0 0 0.5rem rgba(0, 0, 0, 0.3); */
}

/* hr {
    border-top: 1px solid rgb(160, 184, 207);
} */

.small-text {
    font-size: 0.9rem;
    color: rgb(160, 184, 207);
}


.input-group {
    border-radius: 1rem;
    transition: all 0.5s;
}

.input-group:focus-within {
    
    box-shadow: 0 0 0 0.25rem rgba(0, 207, 232, 0.25);
}