/* Adminty Auth Page Styles */
.auth-page {
    background: #f4f7fa;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.auth-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-content {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.auth-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.auth-bg span {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.1;
}

.auth-bg .r {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.auth-bg .s {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-body {
    padding: 40px;
    background: #fff;
}

.auth-icon {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.feather {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.card-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group-text {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-right: none;
    color: #667eea;
    padding: 12px 15px;
}

.form-control {
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-control::placeholder {
    color: #adb5bd;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5568d3 0%, #653a91 100%);
}

.shadow-2 {
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.checkbox {
    position: relative;
    display: inline-block;
}

.checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.checkbox .cr {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    cursor: pointer;
    color: #6c757d;
    font-size: 14px;
}

.checkbox .cr:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 2px solid #dee2e6;
    border-radius: 3px;
    background: #fff;
    transition: all 0.3s;
}

.checkbox input[type="checkbox"]:checked + .cr:before {
    background: #667eea;
    border-color: #667eea;
}

.checkbox input[type="checkbox"]:checked + .cr:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.alert {
    border-radius: 5px;
    font-size: 14px;
    padding: 12px 15px;
}

.text-muted {
    color: #6c757d !important;
    font-size: 14px;
}

.text-muted a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.text-muted a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
    .card-body {
        padding: 30px 20px;
    }
    
    .auth-icon {
        font-size: 40px;
    }
    
    .card-body h3 {
        font-size: 20px;
    }
}
