* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
    height: 100%;
    overflow: hidden;
    background: #0f0f0f;
}

.login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1470252649378-9c29740c9fa8?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    filter: blur(5px);
    
}

.login-container {
    width: 350px;
    padding: 40px 30px;
    margin: auto;
    margin-top: 10vh;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    animation: fadeIn 1s ease forwards;
}


.login-header {
    margin-bottom: 25px;
}

.logo-com-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.8rem; /* tamanho geral */
    font-weight: bold;
    color: #e50914;
    margin-bottom: 10px;
}

#icone-play {
    font-size: inherit; /* igual ao EZ */
}

.texto-logo {
    font-size: inherit;
    font-weight: bold;
}


.login-header p {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    margin-top: 8px;
    padding: 0 10px;
    line-height: 1.4;
}


input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #000000;
    outline: none;
    transition: background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.326);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.9); /* antes era muito claro */
    font-weight: 500;
}


input:focus {
    background: rgba(255, 255, 255, 0.25);
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #ccc;
    margin: 15px 0;
}

.options a {
    color: #e50914;
    font-weight: bold;
    transition: color 0.3s;
}

.options a:hover {
    color: #ffffff;
    text-decoration: underline;
}


button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background-color: #e50914;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #e50914;
}

.register-link {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #ccc;
}

.register-link a {
    color: #e50914;
    font-weight: bold;
    text-decoration: underline;
    
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.login-container,
.login-container * {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

