body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.login-container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    width: 400px;
    max-width: 90%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    text-align: center;
}

/* Área da Logo (Imagem) */
.logo-area {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.logo-area img {
    max-width: 180px; /* Limita a largura da logo */
    height: auto;
    object-fit: contain;
}

.login-container h1 {
    font-weight: bold;
    margin: 0 0 10px;
    color: #333;
}

.login-container span {
    font-size: 12px;
    color: #666;
    margin-bottom: 25px;
    display: block;
}

.form-input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}

.form-input:focus {
    background-color: #e0e0e0;
}

.btn-login {
    border-radius: 25px;
    border: 1px solid #512da8;
    background-color: #512da8;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in, background-color 0.3s;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
}

.btn-login:hover {
    background-color: #4527a0;
}

.btn-login:active {
    transform: scale(0.95);
}

.forgot-pass {
    color: #666;
    font-size: 12px;
    text-decoration: none;
}

/* Rodapé (Voltar + Créditos) */
.login-footer {
    margin-top: 40px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.btn-back-site {
    display: inline-block;
    color: #888;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 10px;
}

.btn-back-site:hover {
    color: #512da8;
}

.btn-back-site i {
    margin-right: 5px;
}

.dev-credits {
    font-size: 11px;
    color: #ccc; /* Cinza bem claro */
    font-weight: 500;
}