* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

/* Labels */
.card label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 5px;
    margin-top: 10px;
}

/* Inputs */
.card input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.card input:focus {
    border-color: #4facfe;
    box-shadow: 0 0 5px rgba(79, 172, 254, 0.5);
}

/* Botão */
.card button {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #4facfe;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #00c6ff;
}

/* Linha */
.card hr {
    margin: 20px 0;
}

/* Link */
.card a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #4facfe;
    font-size: 14px;
}

.card a:hover {
    text-decoration: underline;
}