body {
    font-family: "Overpass", sans-serif;
    background: linear-gradient(135deg, #74ebd5, #ACB6E5);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 400px;
}

h1 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

hr {
    border: none;
    height: 2px;
    background: #eee;
    margin: 20px 0;
}

.btn-primary {
    background: #6c63ff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 10px;
}