body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f2f2f2;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.container{
    background:white;
    width:400px;
    padding:30px;
    border-radius:8px;
    box-shadow:0px 0px 10px rgba(0,0,0,0.1);
}

h2{
    margin-bottom:20px;
}

label{
    display:block;
    margin-top:10px;
    margin-bottom:5px;
}

input, select{
    width:100%;
    padding:8px;
    border:1px solid #ccc;
    border-radius:4px;
    margin-bottom:10px;
}

button{
    width:100%;
    padding:10px;
    background:#990000;
    color:white;
    border:none;
    border-radius:5px;
    cursor:pointer;
}

button:hover{
    background:#770000;
}

.radioGroup{
    display:flex;
    gap:15px;
    margin-bottom:10px;
}

.checkboxLabel{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:15px;
}

#logoutBtn{
    margin-bottom:20px;
}

#profileSection{
    display:none;
}

#welcomeSection{
    display:none;
    
}