/* Modern Login Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body.login-page {
    background: linear-gradient(135deg, #3dc1d3 0%, #192f6a 100%);
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
}

.login-box {
    width: 400px;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 40px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-logo {
    margin-bottom: 30px;
    text-align: center;
}

.login-logo a {
    color: #333;
    text-decoration: none;
}

.login-logo img {
    max-width: 150px;
    height: auto;
}

.login-box-body {
    background: transparent;
    padding: 0;
    color: #666;
}

.login-box-msg {
    margin: 0 0 20px;
    padding: 0 20px 20px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    border-bottom: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    background-color: #f7f9fc;
    border: 2px solid #eef2f7;
    border-radius: 8px;
    height: 48px;
    padding: 10px 15px;
    padding-left: 45px;
    /* Space for icon */
    font-size: 14px;
    color: #333;
    box-shadow: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #20E2D7;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(32, 226, 215, 0.1);
}

.form-control-feedback {
    left: 15px;
    /* Adjust icon position */
    top: 0;
    height: 48px;
    line-height: 48px;
    color: #aaa;
    width: auto;
    right: auto;
}

/* Fix for right-aligned feedback icon in bootstrap default */
.has-feedback .form-control {
    padding-right: 15px;
}

.btn-primary {
    background: linear-gradient(to right, #3dc1d3, #192f6a);
    border: none;
    border-radius: 8px;
    height: 48px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(61, 193, 211, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background: linear-gradient(to right, #192f6a, #3dc1d3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 193, 211, 0.4);
}

.checkbox label {
    font-size: 14px;
    color: #666;
    padding-left: 0;
}

.icheckbox_square-blue {
    margin-right: 5px;
}

.login-box-body .row {
    margin-left: -10px;
    margin-right: -10px;
}

.login-box-body .col-xs-12,
.login-box-body .col-xs-6 {
    padding-left: 10px;
    padding-right: 10px;
}

a {
    color: #3B8D99;
    transition: color 0.3s;
}

a:hover {
    color: #20E2D7;
    text-decoration: none;
}