/* register.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ece9e6, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 350px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #555555;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 14px 25px;
    margin: 10px 0 20px 0;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    border-color: #7aa874;
    outline: none;
}

button {
    width: 100%;
    background-color: #7aa874;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #6b8e60;
}

p {
    text-align: center;
    margin-top: 20px;
}

a {
    color: #7aa874;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
