body {
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
    background-color: #f2f2f2;
    padding: 20px;
}

.company-logo {
    font-size: 24px;
    font-weight: bold;
}

.login-form {
    text-align: center;
    margin: 20px;
}

form {
    max-width: 300px;
    margin: 0 auto;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #0073e6;
    color: white;
    border: none;
    cursor: pointer;
}

.redirect-buttons {
    text-align: center;
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: #0073e6;
    margin: 0 10px;
}

/* Your existing CSS styles */

.registration-button {
    text-align: center;
    margin: 20px;
}

.registration-button a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.registration-button a:hover {
    background-color: #45a049;
}

/* Add these styles to specifically target the registration button within the registration form */
.registration-form .registration-button a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.registration-form .registration-button a:hover {
    background-color: #45a049;
}

