/* assets/css/style.css */
body {
    font-family: 'Inter', sans-serif;
}

/* Background for login */
.custom-login-bg {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

/* Add some dynamic shapes in background */
.custom-login-bg::before, .custom-login-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.custom-login-bg::before {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    top: -100px;
    left: -100px;
}

.custom-login-bg::after {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -150px;
    right: -100px;
}

/* Glassmorphism panel */
.glass-panel {
    z-index: 1;
    position: relative;
}

.custom-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.custom-card .card-header {
    border-bottom: none;
    padding-top: 30px;
}

.custom-card .card-header .h1 {
    color: #1e3c72;
    font-weight: 700;
}

.custom-card .card-header .h1 b {
    color: #2a5298;
}

/* Inputs */
.custom-input .form-control {
    border-radius: 8px 0 0 8px;
    border: 1px solid #ced4da;
    padding: 22px 15px;
    font-size: 15px;
}

.custom-input .input-group-text {
    border-radius: 0 8px 8px 0;
    background-color: transparent;
    color: #2a5298;
}

.custom-input .form-control:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 0.2rem rgba(42, 82, 152, 0.25);
}

.custom-input .form-control:focus + .input-group-append .input-group-text {
    border-color: #2a5298;
}

/* Button */
.btn-modern {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.4);
    transform: translateY(-2px);
}
