﻿body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    font-family: 'Poppins', sans-serif;
    height: 100vh;
}

.login-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%;
}

h3 {
    font-weight: 600;
    color: #333;
}

.input-container {
    position: relative;
}

.input-field {
    width: 100%;
    padding: 10px;
    padding-left: 40px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}

.icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.input-field:focus {
    border-color: #007bff;
}

.btn-gradient {
    background: linear-gradient(to right, #ff9966, #ff5e62);
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s ease;
}

    .btn-gradient:hover {
        background: linear-gradient(to right, #ff5e62, #ff9966);
    }

.forgot-link, .signup-link {
    color: #007bff;
    text-decoration: none;
}

    .forgot-link:hover, .signup-link:hover {
        text-decoration: underline;
    }
