    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    body {
        font-family: 'Segoe UI', sans-serif;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        color: black;
        padding: 1rem;
        line-height: 1.6;
    }

    .form-container {
        background-color: #ffffff;
        padding: clamp(1.5rem, 5vw, 2.5rem);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 450px;
        min-width: 300px;
    }

    h2 {
        text-align: center;
        margin: 0 0 1.8rem;
        font-weight: 600;
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }

    form {
        margin-bottom: 1.5rem;
    }

    .form-group {
        position: relative;
        margin-bottom: 1.2rem;
    }

    .password-toggle {
        position: absolute;
        right: 10px;
        top: 70%;
        transform: translateY(-50%);
        cursor: pointer;
    }

    label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    input {
        width: 100%;
        padding: clamp(12px, 3vw, 14px);
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        transition: border-color 0.3s;
    }

    input:focus {
        outline: none;
        border-color: #4CAF50;
        box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
    }

    .submit-btn {
        width: 100%;
        padding: clamp(12px, 3vw, 14px);
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 4px;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.2s;
        margin-top: 0.5rem;
    }

    .submit-btn:hover {
        background-color: #3d8b40;
        transform: translateY(-2px);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

    a {
        display: block;
        text-align: center;
        color: black;
        text-decoration: none;
        margin-top: 1.2rem;
        transition: color 0.3s;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    a:hover {
        color: #4CAF50;
    }

    @media (max-width: 480px) {
        body {
            padding: 0.5rem;
        }
        
        .form-container {
            padding: 1.5rem 1.2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
    }

    @media (min-width: 768px) {
        .form-container {
            padding: 2.5rem;
        }
    }