/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #ff7e5f, #feb47b);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Form Container */
form {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 70%;
    padding: 20px;
    color: #333;
    text-align: center;
}

/* Heading */
form h1 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #ff7e5f;
}

/* Input Fields */
form input,
form select,
form button {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

/* Input Focus */
form input:focus,
form select:focus {
    border-color: #ff7e5f;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 126, 95, 0.5);
}

/* Buttons */
form button {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: linear-gradient(to right, #feb47b, #ff7e5f);
}

/* Links */
form a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #ff7e5f;
    font-size: 0.95rem;
    transition: 0.3s;
}

form a:hover {
    color: #feb47b;
}

/* Error Messages */
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    form {
        padding: 20px;
    }
    
    form h1 {
        font-size: 1.7rem;
    }
    
    form input,
    form select,
    form button {
        font-size: 1rem;
        padding: 10px;
    }
}
