body {
    background-color: lightblue;
}

#title {
    font-size: 60px; 
    width: 100%;
    margin: 3% auto 2% auto; 
    text-align: center;
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    color:rgb(120, 29, 85);
    font-weight: bold; 
}

#loginDiv {
    font-size: 18px;
    width: 500px;  
    height: 500px; 
    margin: 50px auto;
    padding: 50px;  
    background-color: lemonchiffon;
    border-radius: 50%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.tab-buttons {
    display: flex;
    margin-bottom: 20px;
    border-radius: 25px;
    overflow: hidden;
    width: 80%; 
}

.tab-button {
    flex: 1;
    padding: 8px 12px; 
    border: none;
    background-color: #f1f1f1;
    cursor: pointer;
    font-size: 14px; 
    font-family: 'Ubuntu', 'Times New Roman', Times, serif;
    transition: background-color 0.3s;
}

.tab-button.active {
    background-color: #ec3faa;
    color: white;
}

.tab-button:hover {
    background-color: #0976a5;
}

.tab-button.active:hover {
    background-color: #d63f90;
}

.tab-panel {
    display: none;
    width: 100%;
    text-align: center; 
}

.tab-panel.active {
    display: block;
}

#loggedInDiv {
    font-size: 30px;
    width: 70%;
    margin-left: 15%;
    padding: 25px;
    background-color: #b2b2b2;
}

#accessUIDiv {
    font-size: 30px;
    width: 70%;
    margin-left: 15%;
    padding: 25px;
    background-color: #b2b2b2;
}

.buttons {
    font-size: 16px; 
    border-radius: 25px;
    width: 60%; 
    margin: 12px auto;
    font-family: 'Ubuntu', 'Times New Roman', Times, serif;
    padding: 10px 16px; 
    border: 2px solid #ccc;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttons:hover{
    background-color: #119ed698;
    color: #FFFFFF;
    opacity: 50%;
}

#loginName { 
    font-size: 18px; 
} 

#loginPassword { 
    font-size: 18px; 
} 

#registerLogin { 
    font-size: 18px; 
} 

#registerPassword { 
    font-size: 18px; 
}

input[type="text"], input[type="password"]{
    border-radius: 25px;
    text-align: center;
    width: 75%; 
    margin: 10px auto;
    display: block;
    padding: 10px;
    font-family: 'Ubuntu', 'Times New Roman', Times, serif;
    font-size: 14px;
    border: 2px solid #ddd;
}

#inner-title{
    display: block;
    font-size: 16px;
    width: 90%;
    text-align: center;
    margin: 0 auto 20px auto; 
    font-family: 'Ubuntu', 'Times New Roman', Times, serif;
    color: #37a4db;
}

#loginResult{
    display: block;
    font-size: 14px;
    width: 90%;
    text-align: center;
    margin: 15px auto;
    font-family: 'Ubuntu', 'Times New Roman', Times, serif;
    color: #17489c64;
}

#registerResult{
    display: block;
    font-size: 14px;
    width: 90%;
    text-align: center;
    margin: 15px auto;
    font-family: 'Ubuntu', 'Times New Roman', Times, serif;
    color: #e64975;
}

#userName{
    display: inline-block;
    width: 80%;
    margin-left: 10%;
    text-align: center;
}

#logoutButton{
    width: 20%;
    margin-left: 40%;
}

select{
    width: 30%;
    margin-left: 35%;
    margin-top: 2%;
    font-size: 0.75em;
    font-family: 'Ubuntu', 'Times New Roman', Times, serif;
}