/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'poppins';
    /* background: linear-gradient(to right, #4A90E2, #145DA0); */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Login Container */
.login-container {
    background: white;
    padding: 30px;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Title */
h1 {
    margin-bottom: 20px;
    color: #333;
}

/* Input Fields */
.input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

/* Input Focus Effect */
.input:focus {
    border-color: #4A90E2;
    outline: none;
}

/* Submit Button */
.button {
    width: 100%;
    padding: 12px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover Effect for Button */
.button:hover {
    background: #357ABD;
}

/* Error Message */
.error {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}
