
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background: linear-gradient(135deg, #6e8efb, #a777e3);
    }
    .container {
        background: white;
        padding: 30px;
        border-radius: 10px;
        width: 100%;
        max-width: 350px;
        box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    }
    h2 {
        text-align: center;
        margin-bottom: 20px;
        color: #333;
    }
    input {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
        outline: none;
        font-size: 16px;
    }
    button {
        width: 100%;
        padding: 12px;
        background: #6e8efb;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s ease;
    }
    button:hover {
        background: #5a75e6;
    }
    p {
        text-align: center;
        margin-top: 15px;
        font-size: 14px;
    }
    a {
        color: #6e8efb;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }