body {
    font-family: 'Consolas';   
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;  
}
h1.topspace {
    color: #333;
    margin-right: 1%;
    font-size: 40px;
    margin-top: 15px; 
}
footer {
    background-color: #111111;
    color: white;
    text-align: center;
    height: 36px;
    width: 100%;
    bottom: 0;
    left: 0;
    position: fixed;
}
header {
    background: linear-gradient(135deg, #3b0066, #000000);
    color: white;
    padding: 20px;
    width: 97.4%;  
    text-align: center;
    border-bottom: 3px solid #000000;
}
.dropdown {
    display: flex;
    align-items: center;
    position: relative;            
}
.arrow {
    font-size: 20px;
    margin-left: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.arrow:hover {
    color: #dbaa1f;
}
.dropdown:hover .arrow {
    transform: rotate(180deg);
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    color: #000000;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;        
}
.dropdown-content a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content a:hover {
    background-color: #ddd;
}
nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav a:hover {
    color: #ff3333;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

img.logo {
    width: 90px;
    margin-left: -84%;
    margin-top: -0.5%;
}
.fontlogo1 {
    margin-top: -1%;
    color: white;
    margin-left: -83%;
}

.fontlogo2 {
    font-family: 'Times New Roman', Times, serif;
    margin-top: -1%;
    color: white;
    margin-left: -83.3%;
    font-size: 10px;
    letter-spacing: 0.1em;
}

a {
    color: white;
    text-decoration: none;
    padding-left: 1%;
}

a:hover {
    color: #dbaa1f;
}

.bg {
    background-color: #f2f2f2;
    width: 270%;
    height: 30%;
    margin-left: -98%;
    margin-bottom: 55px;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    padding: 20px; 
    box-shadow: 2px 4px 4px 4px rgba(0, 0, 1, 0.1);
    position: relative;    
}

.TopBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #510088;
    border-radius: 15px 15px 0 0;
    z-index: -1;
}

form {
    display: flex;
    flex-direction: column;
    z-index: 1;
    position: relative;
}
input[type="text"], input[type="email"], input[type="date"], input[type="tel"],  input[type="password"] {
    padding: 8px;
    margin-bottom: -20px;
    border: 1px solid #ccc;
    border-radius: 5px;    
}

input[type="submit"] {
    background-color: #3b0066;
    font-family: 'Consolas', sans-serif;
    font-size: 15px;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}
input[type="submit"]:hover {
    background-color: #4c0080;
}
label {
    font-weight: bold;
    font-size: 18px;
    margin-left: 6px;    
}