@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;600;700&display=swap');
.main {
    background-color: orange;
    padding: 70px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 50%;
    border-radius: 20px;
    margin-top: 50px;
}

.form {
    margin-bottom: 50px;
    height: 200px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}


.alert {
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color:#FFF;
    font-family: 'Poppins', sans-serif;
}

p {
    margin-bottom: 20px;
    color:#FFF;
    font-family: 'Poppins', sans-serif;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color:#FFF;
    font-family: 'Poppins', sans-serif;
}

.form-control {
    width: 100%;
    padding: 10px;
    border:0px;
    background-color: #fff;
    color: #ff6600;
    font-weight: 600;
    margin-bottom: 10px;
    border-radius:20px;
}
.form-control1{
    width: 65%;
    padding: 10px;
    border:0px;
    background-color: #fff;
    color: #ff6600;
    font-weight: 600;
    margin-bottom: 10px;
    border-radius:20px;
}
.btn {
    background-color: #fff;
    color: #ff6600;
    font-weight: 700;
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #ff4500;
    color: #fff;
}
