/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Full-Screen Gradient Background */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #4c87ff, #6ec6ff, #9fd3a6);
}

/* Login Box */
.login-container {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 10px;
    font-weight: 600;
}

.welcome-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Input Fields */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    background: #f1f1f1;
}

.input-group i {
    margin-right: 10px;
    color: #555;
}

.input-group input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
}

/* Error Message */
.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Login Button */
.btn {
    width: 100%;
    padding: 10px;
    background: #4c87ff;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #3267dd;
}

/* Forgot Password & Sign Up Links */
.links {
    margin-top: 15px;
}

.links a {
    text-decoration: none;
    color: #4c87ff;
    font-size: 14px;
}

.links span {
    color: #666;
    margin: 0 5px;
}
