/* Reset & Fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url('https://images.unsplash.com/photo-1607799279861-4dd421887fb3?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(219, 45, 73, 0.2) 0%, rgba(69, 69, 70, 0.7) 100%);
    z-index: 0;
}

.login-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 450px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
}

.logo {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #FCB016, #DB2D49);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    color: white;
    transition: all 0.3s;
}

.input-group input:focus {
    border-color: #DB2D49;
    background: rgba(219, 45, 73, 0.1);
    outline: none;
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    pointer-events: none;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: rgba(69, 69, 70, 0.9);
    padding: 0 5px;
    color: #FCB016;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: #DB2D49;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.login-btn:hover {
    background: linear-gradient(90deg, #F7941E, #DB2D49);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 45, 73, 0.4);
}

.footer-links {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: #FCB016;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #DB2D49;
}

/* Responsividade */
@media (max-width: 480px) {
    .login-container {
        padding: 1.8rem;
    }

    .logo {
        font-size: 1.8rem;
    }
}
