/* .card{
    background-color:-webkit-linear-gradient(top, #2f33b4, #9f8818) !important;
} */
.authentication{height:100vh;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;text-align:center}.authentication .card{max-width:350px;margin-top:200px;box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12)}.authentication .card .header{margin-top:-70px;color:#16191a;margin-bottom:20px;box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0px rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2)}.authentication .card .header h1{font-size:22px;margin-bottom:20px;margin-top:10px}.authentication .card .title{margin:0}.authentication .card .msg{font-size:14px;font-weight:400;text-transform:none}.authentication .l-social{margin:0}.authentication .l-social li{display:inline-block}.authentication .l-social li a{text-align:center;padding:5px 10px;color:#666}@media only screen and (min-width: 992px) and (max-width: 1024px){.authentication .card{margin-top:100px}}@media only screen and (max-width: 767px){.authentication .card{margin-top:100px}}

/* Modern Login Page Styles */
.authentication {
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.bg-circle-1, .bg-circle-2, .bg-circle-3 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Enhanced Form Styles */
.form-line {
    position: relative;
    margin-bottom: 25px;
}

/* .form-line .form-control {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-line .form-control:focus {
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
    outline: none;
} */

.form-line .form-label {
    color: #90a4ae;
    font-size: 13px;
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    background: none;
    padding: 0 5px;
}

/* .form-line .form-control:focus + .form-label,
.form-line .form-control:not(:placeholder-shown) + .form-label {
    top: -10px;
    font-size: 11px;
    color: #2196f3;
} */

/* Button Hover Effects */
.btn-primary {
    background: linear-gradient(135deg, #2196f3, #1976d2) !important;
    border: none !important;
    border-radius: 25px;
    padding: 12px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
}

.btn-default {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0) !important;
    border: none !important;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    color: #616161;
    transition: all 0.3s ease;
}

.btn-default:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Alert Styling */
.alert-danger {
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    box-shadow: 0 4px 15px rgba(238, 90, 82, 0.3);
}

/* Card Animation */
.card {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for Icons */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Enhanced Icon Styling */
.form-line i {
    transition: all 0.3s ease;
}

/* .form-line .form-control:focus + i {
    color: #2196f3;
} */

/* SMART Logo Badge Styling */
.smart-logo-badge {
    animation: slideInRight 0.8s ease-out;
}

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

/* Enhanced Button with Icon */
.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

/* Form Label Adjustments for Icons */
.form-line .form-control:focus + .form-label,
.form-line .form-control:not(:placeholder-shown) + .form-label {
    left: 40px !important;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .authentication .card {
        margin: 50px 20px;
        max-width: calc(100% - 40px);
    }
    
    .bg-circle-1, .bg-circle-2, .bg-circle-3 {
        display: none;
    }
    
    /* Adjust SMART logo for mobile */
    .smart-logo-badge {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
    }
    
    .smart-logo-badge img {
        width: 30px;
        height: 30px;
    }
    
    .smart-logo-badge div div:first-child {
        font-size: 14px;
    }
    
    .smart-logo-badge div div:last-child {
        font-size: 8px;
    }
    
    /* Adjust digital icons for mobile */
    .header .fa-desktop,
    .header .fa-chart-line,
    .header .fa-clock {
        font-size: 20px;
    }
}
