﻿.signup-selection-alt-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 20px; 
    background-color: #ffffff; 
    box-sizing: border-box;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); 
    max-width: 500px;
    width: 100%;
    padding: 30px;
    text-align: center;
    margin: 0 15px; 
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
}

.heading {
    font-family: 'Mukta', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.subheading {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 20px;
}

.info-text {
    font-size: 0.9rem;
    color: #ff4d4d;
    margin: 10px 0 20px;
    font-weight: bold;
}

.user-type-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.user-type-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fb;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

    .user-type-card:hover {
        background-color: #eef4ff;
    }

    .user-type-card input[type="radio"] {
        display: none; 
    }

.icon {
    font-size: 1.8rem;
    color: #00FF84; 
    margin-right: 15px;
}

.card-content label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.card-content p {
    color: #555;
    font-size: 0.9rem;
    margin-top: 5px;
}

.button-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.button {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .button.cancel {
        background-color: #ffffff;
        color: #00FF84;
        border: 2px solid #00FF84;
    }

        .button.cancel:hover {
            background-color: #e6fff0;
            color: #00cc6f;
        }

    .button.continue {
        background-color: #00FF84;
        color: white;
        border: none;
    }

        .button.continue:hover {
            background-color: #00e573;
        }
