@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
body {
    background-color: #f7f7f7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: "Google Sans", sans-serif;
    color: #111111;
}

.card {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

h3 {
    font-weight: 700;
    color: #e90909;
    letter-spacing: -0.5px;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333333;
}

.form-control {
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 0.6rem 0.75rem;
    color: #111111;
}

.form-control:focus {
    border-color: #111111;
    box-shadow: none;
}

.btn-dark-custom {
    background-color: #111111;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-dark-custom:hover {
    background-color: #222222;
    color: #ffffff;
}

.link-custom {
    color: #007788;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.link-custom:hover {
    text-decoration: underline;
}

.step-container {
    display: none;
}

.step-active {
    display: block;
}