/* Reset some browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

/* Heading */
h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #890c25;
    font-size: 28px;
}

/* Form container */
form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Input styles */
input[type="email"],
input[type="text"],
input[type="password"] {
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
    transition: border 0.2s;
}

input:focus {
    border-color: #890c25;
    outline: none;
}

/* Button styles */
button {
    padding: 12px;
    background-color: #890c25;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover {
    background-color: #6f081e;
}

/* SweetAlert overrides (optional) */
.swal2-popup {
    font-size: 1rem !important;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    form {
        padding: 20px;
    }

    h1 {
        font-size: 22px;
    }

    input,
    button {
        font-size: 14px;
    }
}
