@font-face {
    font-family: 'Rockselavie';
    src: url('/assets/fonts/Rockselavie-Regular.woff2') format('woff2'),
         url('/assets/fonts/Rockselavie-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rockselavie';
    src: url('/assets/fonts/Rockselavie-Italic.woff2') format('woff2'),
         url('/assets/fonts/Rockselavie-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

body.auth {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: radial-gradient(circle at center, rgb(37 86 98) 0%, rgba(0, 0, 0, 1) 70%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.auth-logo {
    text-align: center;
}

.auth-logo img {
    max-height: 140px;
    width: auto;
}

.auth-title {
    color: white;
    text-align: center;
    margin: 20px 0;
    font-size: 24px;
    font-family: "Rockselavie", serif;
    font-weight: normal;
    font-style: italic;
    letter-spacing: 1px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-control {
    background: #0a1f24 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #cccccc !important;
    padding: 12px 16px;
    font-size: 16px;
}

.auth-form .form-control:focus {
    background: #030303 !important;
    border-color: #219EBC;
    box-shadow: 0 0 0 3px rgba(33, 158, 188, 0.1);
    outline: none;
}

.auth-form .form-control:-webkit-autofill,
.auth-form .form-control:-webkit-autofill:hover,
.auth-form .form-control:-webkit-autofill:focus,
.auth-form .form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0a1f24 inset !important;
    -webkit-text-fill-color: #cccccc !important;
    background-color: #0a1f24 !important;
    color: #cccccc !important;
    transition: 0s;
    border: none;
}

.auth-form .form-control,
.auth-form .form-control:not(:-webkit-autofill) {
    color: #cccccc !important;
}

input:-internal-autofill-selected {
    background-color: #0a1f24 !important;
    color: #cccccc !important;
}

.auth-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.auth-btn {
    background: #0685B0;
    border: none;
    border-radius: 32px;
    color: white;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-btn:hover {
    background: #1a7a94;
    transform: translateY(-1px);
}

.auth-link {
    color: #219EBC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #1a7a94;
    text-decoration: none;
}

.auth-checkbox {
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
}

.auth-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.6);
}

.auth-footer a {
    color: #219EBC;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    color: #1a7a94;
    text-decoration: none;
}