/*.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000; 
    background-color: #fff; 
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.animated-border {
    position: relative;
    width: 360px;
    border-radius: 10px;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 13px;
    background: linear-gradient(45deg, #ff0057, #00bfff, #ff0057, #00bfff);
    background-size: 400% 400%;
    animation: gradientAnimation 5s linear infinite;
    z-index: -1;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.login-box {
    background: #ffffff; 
    border-radius: 10px;
    padding: 2px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    z-index: 1;
    color: #000;
}

.card {
    background: transparent;
    color: #000; 
}

.card-header, .card-body {
    background: #ffffff; 
    border-radius: 10px;
    color: #000; 
}

.card-header a {
    color: #000 !important; 
}

.card-body {
    color: #000 !important; 
}

a {
    color: #000 !important; 
}

input::placeholder {
    color: #666 !important; 
}
