/* ===== GENERAL STYLES ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background:transparent;
}

header {
    background: #55d3b8;
    color: white;
    padding: 15px;
    text-align: center;
}

footer {
    background: #222;
    color: white;
    padding: 10px;
    text-align: center;
    margin-top: 30px;
}

/* ===== FORM SECTION (Register Page) ===== */
.form-section {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.form-container {
    background:transparent white;
    padding: 25px;
    width: 450px;
    border-radius: 23px; 
    border: 2px solid black;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.form-container h2{
    text-align: center;
}
#regForm{
    height: 350px;
    width:350px;
    text-align: center;
}
#regForm input{
    border-radius: 23px;
}

.form-container input,
.form-container button {
    width: 100%;
    padding: 12px;
    margin: 10px 10px;

}
#regForm button{
    border-radius:23px ;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 367px;
}
button {
    background: #f21010;
    color: white;
    border: none;
    cursor: pointer;
}



