/* Global styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #00d1b2, #007b7f); /* Gradient për background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #fff;
}

/* Login Box Styling */
.login-box {
    background: rgba(255, 255, 255, 0.9); /* Përdorimi i një transparence të lehtë */
    padding: 40px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

/* Efekt animacioni */
.login-box:hover {
    transform: translateY(-10px);
}

/* Title Styling */
.login-box h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Input fields styling */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    color: #333;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Input focus effect */
input[type="text"]:focus, input[type="password"]:focus {
    border-color: #00d1b2;
    background-color: #fff;
    outline: none;
}

/* Submit button styling */
button {
    width: 100%;
    padding: 14px;
    background-color: #00d1b2;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #008f80; /* Darker shade of the button color */
}

/* Error message styling */
.error {
    color: red;
    margin-top: 15px;
}

/* Responsive Design for small screens */
@media (max-width: 600px) {
    .login-box {
        width: 90%;
        padding: 30px;
    }

    .login-box h2 {
        font-size: 20px;
    }

    input[type="text"], input[type="password"] {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}
