

html, body {
    font-family: 'Roboto', sans-serif;
    height: 100%;
    margin: 0;
}

.beta-soft {
    font-family: 'Comfortaa', sans-serif !important;
}

body {
    background: linear-gradient(90deg, #c8cbce 0%, #e6e6e6 100%);
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    margin: 0;
}

.custom-bg-dark {
       background-color: #19398A !important;
       color: #ffffff;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer {
    background-color: #19398A !important;
    color: white;
    text-align: center;
    padding: 10px 0 !important;
    width: 100%;
    font-size: 0.75rem;
}

.navbar {
           position: fixed;
           top: 0;
           z-index: 1000;
           width: 100%;
           display: flex;
           align-items: center;
           padding: 10px 0;
           padding-left: 2px;
       }

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    animation: slideInRight 1s ease-out;
    width: 100%;
}

.card-header {
    background-color: #4e73df;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    text-transform: uppercase;
}

.card-body {
    padding: 30px;
    background-color: #f8f9fc;
}

.form-control {
    border-radius: 20px;
    border: 1px solid #ccc;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 5px rgba(78, 115, 223, 0.7);
}

.input-group-text {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

.input-group-text:hover {
    background-color: #e7f1ff;
}

.btn {
    margin-top: 30px;
    width: 100%;
    border-radius: 25px;
    padding: 12px;
    background-color: #1cc88a;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #17a673;
}

.mb-3 {
    margin-bottom: 20px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #4e73df;
    pointer-events: none;
}

.form-container {
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
