.register-body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #eeeeee;
}

.register-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    gap: 20px;
}

.register-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.register-title {
    font-size: 1.8rem;
    color: #171718;
    margin-bottom: 20px;
}

.register-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.register-form label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
}

.register-form input,
.register-form select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.register-button {
    background-color: #171718;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.register-button:hover {
    background-color: white;
    color: #171718;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.login-link {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
}

.login-link a {
    color: #0d47a1;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.admin-register {
    border-top: 2px solid #ccc;
    padding-top: 20px;
}