body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #6a11cb, #4b0082);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    flex-direction: column;
}
.container {
    max-width: 400px;
    width: 100%;
    background: #e6e8fa;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #000;
    font-size: 14px;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #555;
}
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease;
    font-size: 16px;
}
input:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 5px rgba(106, 17, 203, 0.5);
}
button {
    width: 100%;
    padding: 15px;
    border: none;
    background: linear-gradient(135deg, #6b06d6, #59008d);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #2575fc, #6a11cb);
}
p {
    margin-top: 20px;
    color: #5f4b8b;
}

a {
    display: inline-block;
    margin-top: 10px;
    color: #9b67d2;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

a:hover {
    color: #7a4cb3;
}