@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-container {
    width: 100%;
    max-width: 450px;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(212, 210, 210, 0.1);
}

.title-container {
    text-align: center;
    margin-bottom: 25px;
}

.title-container h2 {
    color: #000;
    font-size: 1.5rem;
}

.title-container h2 i {
    color: #f1c40f;
}

.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    gap: 0;
}

.progress-step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.progress-step.active {
    background-color: #151335;
    color: white;
}

.progress-line {
    width: 50px;
    height: 3px;
    background-color: #e0e0e0;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
    font-size: 0.9rem;
}

.step-title {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #151335;
    box-shadow: 0 0 0 2px rgba(21, 19, 53, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: #151335;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #000;
}

.form-links a {
    text-decoration: none;
    font-weight: 500;
    color: #000;
}

.form-links a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-container {
    width: 100%;
    max-width: 450px;
    background: white;
    padding: 10px;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(212, 210, 210, 0.1);
}

.title-container {
    text-align: center;
    margin-bottom: 15px;
}

.title-container h2 {
    color: #000;
    font-size: 1.2rem;
}

.title-container h2 i {
    color: #f1c40f;
}

.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    gap: 0;
}

.progress-step {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.progress-step.active {
    background-color: #151335;
    color: white;
}

.progress-line {
    width: 50px;
    height: 3px;
    background-color: #e0e0e0;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-left: 4px solid #dc3545;
    font-size: 0.8rem;
}

.step-title {
    text-align: center;
    color: #000;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-weight: 500;
    font-size: 0.8rem;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.8rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #151335;
    box-shadow: 0 0 0 2px rgba(21, 19, 53, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 10px;
    background-color: #151335;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #000;
}

.form-links a {
    text-decoration: none;
    font-weight: 500;
    color: #000;
}

.form-links a:hover {
    text-decoration: underline;
}
}

@media (min-width: 481px) and (max-width: 900px) {
    body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-container {
    width: 100%;
    max-width: 450px;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(212, 210, 210, 0.1);
}

.title-container {
    text-align: center;
    margin-bottom: 25px;
}

.title-container h2 {
    color: #000;
    font-size: 1.5rem;
}

.title-container h2 i {
    color: #f1c40f;
}

.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    gap: 0;
}

.progress-step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.progress-step.active {
    background-color: #151335;
    color: white;
}

.progress-line {
    width: 50px;
    height: 3px;
    background-color: #e0e0e0;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
    font-size: 0.9rem;
}

.step-title {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.85rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #151335;
    box-shadow: 0 0 0 2px rgba(21, 19, 53, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: #151335;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #000;
}

.form-links a {
    text-decoration: none;
    font-weight: 500;
    color: #000;
}

.form-links a:hover {
    text-decoration: underline;
}
}