@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

:root {
    --primary-color: #3a4052;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

h1 {
    font-weight: 300;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.showcase {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--primary-color) no-repeat center center/cover;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-container:after {
    content: '';
    z-index: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
}

.content {
    z-index: 2;
}

/* 🔹 Botões menores */
.btn, button {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    border: solid #fff 1px;
    margin-top: 10px;
    opacity: 0.8;
    font-weight: 400;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    transform: scale(0.98);
}

/* 🔹 Formulários escondidos inicialmente */
.hidden {
    display: none;
}

/* 🔹 Campos de SteamID e Senha */
.login-input {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 8px auto;
    padding: 10px;
    font-size: 14px;
    border: 2px solid #ff9800;
    border-radius: 5px;
    text-align: center;
    background: #f5f5f5;
    color: #333;
    outline: none;
    transition: 0.3s;
}

.login-input:focus {
    border-color: #e68900;
    background: #ffffff;
}

/* 🔹 Estilo para o botão ENTRAR */
.btn-login {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 8px auto;
    padding: 10px;
    background: #ff9800;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-login:hover {
    background: #e68900;
}

/* 🔹 Estilo para o botão LOGIN COM SENHA */
.btn-alt {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 10px auto;
    padding: 10px;
    background: #009688;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-alt:hover {
    background: #00796b;
}

/* 🔹 Esqueci minha senha (Dentro do Login) */
#forgot-password {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 8px auto;
    padding: 8px;
    background: transparent;
    color: #ff9800;
    font-size: 12px;
    border: none;
    cursor: pointer;
    text-align: center;
}

#forgot-password:hover {
    text-decoration: underline;
}

/* 🔹 Centralizar os botões */
.login-options {
    text-align: center;
}

/* 🔹 Rodapé atualizado */
footer {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
