body {
    margin: 0;
    padding: 0;
    background: url('/images/register-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("/images/loginback.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.register-container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 3em;
    border-radius: 10px;
    text-align: center;
    color: white;
    width: 350px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.register-form input,
.register-form select {
    width: 100%;
    padding: 0.7em;
    margin: 0.7em 0;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

.register-form button {
    width: 100%;
    padding: 0.7em;
    background-color: #F66B0E;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register-form button:hover {
    background-color: #e65c00;
}

.login-link {
    margin-top: 1em;
    font-size: 0.9em;
}

.login-link a {
    color: #F66B0E;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}
#form-message {
    margin-top: 30px;
    padding: 12px 16px;
    background-color: #2ecc71; /* green success */
    color: white;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
};
.form-container {
    max-width: 400px;
    padding: 30px;
    background-color: #555;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin: auto;
}


