:root {
    --primary-color: #cb0f22; /* Rosa vibrante da imagem */
    --glass-bg: rgba(255, 255, 255, 0.3); /* Transparência de 30% */
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    background: linear-gradient(135deg, #cb0f22 0%, #fd97af 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px); /* Efeito de desfoque moderno */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    width: 350px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    color: white;
}

.logo-container {
    width: 100%; 
    max-width: 250px;
    height: auto;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: white;
    outline: none;
    box-sizing: border-box;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: white;
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 10px;
}

.btn-login:hover {
    transform: scale(1.05);
}

.footer-link {
    margin-top: 25px;
    font-size: 0.9em;
}

.footer-link a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
}