@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(imagens/img.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper {
    width: 420px;
    background: rgba(2, 6, 23, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 35px;
}

.wrapper h1 {
    font-size: 28px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box input {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 45px 15px 20px;
    font-size: 15px;
    color: #fff;
    transition: all 0.3s;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-box input:focus {
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.remember-forgot label {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-forgot label input {
    margin-right: 5px;
}

.remember-forgot a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.remember-forgot a:hover {
    color: #60a5fa;
}

.btn {
    width: 100%;
    height: 50px;
    background: #3b82f6;
    border: none;
    outline: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    background: #2563eb;
}

.btn:disabled {
    background: #64748b;
    cursor: not-allowed;
}

#hintDisplay {
    margin-top: 15px;
    display: none;
}

#hintText {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: block;
}

.error-message, 
.success-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
}