/* Font and background */
body {
    font-family: "Poppins", sans-serif;
    /* background: linear-gradient(135deg, #dcecff, #f8f9ff); */
    background: url('../../images/fitness-bg.jpg') no-repeat center center fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card container */
.card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 3rem 2rem;
    max-width: 480px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Typography */
h1 {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-custom {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: scale(1.05);
}