body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #0B0B3D;
    background: #F1ECFF;
}

header {
    background-color: #BA9FFF;
    color: #0B0B3D;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo a{
    text-decoration: none;
    color: #0B0B3D;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-buttons a {
    text-decoration: none;
    color: #0B0B3D;
    background-color: #CFBDFF;
    padding: 10px 15px;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: bold;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.nav-buttons a:hover {
    background-color: #E0D4FF;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

h2 {
    text-align: center;
    font-size: 36px;
    margin: 40px;
    color: #4A4A8A;
}

form {
    max-width: 500px;
    margin: 20px auto;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: #0B0B3D;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #BA9FFF;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    transition: box-shadow 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    box-shadow: 0 0 10px #BA9FFF;
    border-color: #9F85FF;
    outline: none;
}

input[type="submit"] {
    display: block;
    width: 100%;
    background-color: #BA9FFF;
    color: #FFFFFF;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input[type="submit"]:hover {
    background-color: #9F85FF;
    transform: translateY(-3px);
}

.message {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #0B0B3D;
}

.message a {
    color: #9F85FF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.message a:hover {
    color: #BA9FFF;
}