
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
}

.header {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.site-title {
    font-size: 28px;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 15px;
}

.nav-button {
    background-color: white;
    color: #007BFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-button:hover {
    background-color: #e0e0e0;
}

.register-section {
    background: #ffffff;
    padding: 30px;
    margin: 40px auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.register-form {
    display: flex;
    flex-direction: column;
}

.register-form label {
    margin: 10px 0 5px;
    font-weight: bold;
}

.register-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.register-form button {
    margin-top: 20px;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.register-form button:hover {
    background-color: #0056b3;
}

