﻿/* BACKGROUND */
body {
    background: #f4f7fb;
    font-family: 'Segoe UI', sans-serif;
}

/* WRAPPER */
.auth-wrapper,
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CARD */
.auth-card,
.login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    animation: fadeInUp 0.5s ease;
}

/* HEADER */
.auth-header {
    text-align: center;
    margin-bottom: 15px;
}

    .auth-header i {
        font-size: 3rem;
        color: #0d6efd;
    }

.title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* LOGO */
.logo {
    width: 80px;
    display: block;
    margin: 0 auto 10px;
}

/* INPUTS */
.input-group-text {
    background: #f1f3f6;
    border-radius: 10px 0 0 10px;
}

.form-control {
    border-radius: 0 10px 10px 0;
    transition: 0.3s;
}

    .form-control:focus {
        box-shadow: 0 0 0 2px rgba(13,110,253,0.2);
        border-color: #0d6efd;
    }

/* BUTTON */
.btn-primary {
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

/* CAPTCHA */
.captcha-img {
    height: 45px;
    width: 100%;
    object-fit: contain;
    border-radius: 6px;
}

/* LINKS */
a {
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* ANIMATION */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
