@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;
}

.register-container {
    width: 100%;
    max-width: 500px;
    padding: 15px;
}

.register-card {
    background-color: rgb(26, 43, 66);
    padding: 2rem;
    padding-bottom: 0.8rem;
    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);
    border-radius: 1rem;
    color: white;
    padding: 0.75rem 1rem;
}

.form-control::placeholder {
    color: rgb(160, 184, 207);
    opacity: 1;
}

.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);
}


.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);
    border-radius: 1rem;
    color: rgb(13, 27, 42);
}
.input-group-text i {
    color: rgb(13, 27, 42);
}

.btn-register {
    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-register:hover {
    background-color: rgb(0, 169, 192);
    border-color: rgb(0, 169, 192);
    border-radius: 1rem;
    color: rgb(13, 27, 42);
}

.small-text {
    font-size: 0.9rem;
    color: rgb(160, 184, 207);
}