
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: url('imagens/imagem.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    width: 320px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
}

.login-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.login-box p {
    color: #ddd;
    margin-bottom: 25px;
}


.login-box label {
    display: block;
    text-align: left;
    font-size: 14px;
    color: #eee;
    margin-bottom: 5px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    outline: none;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.login-box input:focus {
    border-bottom-color: #ff9966;
}


.login-box button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(45deg, #ff9966, #ff5e62);
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.login-box button:hover {
    opacity: 0.85;
}


.signup {
    margin-top: 20px;
    font-size: 14px;
    color: #ddd;
}

.signup a {
    color: #ff9966;
    text-decoration: none;
}

.signup a:hover {
    text-decoration: underline;
}
