
body {
    font-family: 'Arial', sans-serif;
    background-color: #f2e6f9; /* Light pastel purple */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    color: #6a4c8c; /* Darker purple for text */
}
/* Login Page above form text styling*/
#LoginPage {
    text-align: center;
    display: flex;
    justify-content: space-evenly;
}
.MainForm{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

/* Main container for the form */
.MainForm {
    background-color: #fff;
    /*padding: 40px;*/
    padding: 50px 25px 50px 25px;
    border-style: double;
    border-radius: 15px; /* Rounder corners */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /*width: 320px;*/
    text-align: center;
    border: 2px solid #d0aad5;
   
} 

#Login-Para {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px; 
    color: #6a4c8c;
}