@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../../img/login/AtlasPhoto-back.jpeg') no-repeat center center fixed;
    background-size: cover;
    padding: 20px;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.75));
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
}

.full-content-center {
    width: 100%;
}

.box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 48px 36px 40px;
    width: 100%;
    margin: auto;
    opacity: 1;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

img.logo {
    display: block;
    margin: 0 auto 24px;
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

h3 {
    color: #f1f5f9 !important;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group {
    margin-bottom: 16px;
}

.form-control {
    width: 100%;
    padding: 14px 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.07) !important;
    color: #f1f5f9 !important;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    outline: none;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: rgba(37, 99, 235, 0.6) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.form-control::placeholder {
    color: rgba(148, 163, 184, 0.7);
}

input[type="submit"],
.btn-warning {
    width: 100%;
    padding: 14px 24px !important;
    border: none !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

input[type="submit"]:hover,
.btn-warning:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4) !important;
}

input[type="submit"]:active,
.btn-warning:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3) !important;
}

.forgot_color {
    color: rgba(148, 163, 184, 0.9);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    margin-top: 16px;
}

.forgot_color:hover {
    color: #f1f5f9;
}

.animated {
    animation-duration: 0.6s !important;
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bounceInLeft {
    animation-name: bounceInLeft !important;
}

.checkbox label {
    color: rgba(241, 245, 249, 0.8);
    font-size: 13.5px;
}

.bg-light {
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 8px;
    padding: 12px !important;
}

.has-error .form-control {
    border-color: rgba(239, 68, 68, 0.6) !important;
}

.help-block {
    color: #fca5a5;
    font-size: 12.5px;
    margin-top: 6px;
}

@media (max-width: 480px) {
    .box {
        padding: 36px 24px 32px;
        border-radius: 20px;
    }

    h3 {
        font-size: 20px;
    }
}
