@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;700&family=Manrope:wght@400;500&display=swap');
*{
    font-family: 'Fredoka One', cursive;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #FFF8F0;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

.signup-container {
    width: 350px;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.form-title {
    text-align: center;
    margin-bottom: 20px;
    color: #8a1b1b;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #f0f0f0;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.radio-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.radio-option {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.radio-option input {
    margin-right: 5px;
}

.btn-signup {
    width: 100%;
    padding: 12px;
    background-color: #8a1b1b;
    color: #FFF8F0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-signup:hover {
    background-color: #721111;
}

.image-Singup {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10%;
}

.image-Singup img {
    max-width: 100%;
    height: auto;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    
    .signup-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
}