body.register-page {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

form.register-form {
    width: 100%;
    max-width: 450px;
    padding: 30px 35px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

form.register-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #00334d;
    font-weight: 700;
}

form.register-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

form.register-form input:focus {
    border-color: #007bff;
    outline: none;
}

form.register-form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

form.register-form button:hover {
    background-color: #0056b3;
}

.message {
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.register-links {
    margin-top: 15px;
    text-align: center;
}

.register-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    margin: 0 5px;
}

.register-links a:hover {
    text-decoration: underline;
}

