/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(to bottom right, #e0f7fa, #ffffff);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(to right, #00bcd4, #4dd0e1);
    color: white;
    text-align: center;
    padding: 30px 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

header p {
    font-size: 18px;
    font-weight: 300;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Form Styling */
form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.2);
    width: 100%;
    max-width: 500px;
}

form label {
    display: block;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #006064;
}

form label input {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #b2ebf2;
    border-radius: 8px;
    margin-top: 5px;
    background-color: #f5fcfd;
    transition: all 0.3s ease;
}

form label input:focus {
    border-color: #00bcd4;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 188, 212, 0.4);
}

/* Button */
button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #00bcd4, #4dd0e1);
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: linear-gradient(to right, #0097a7, #26c6da);
}

.login-redirect {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: #444;
}

.login-redirect a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.login-redirect a:hover {
    text-decoration: underline;
    color: #0056b3;
}


/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #b2ebf2;
    color: #004d40;
    font-size: 14px;
}
