        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .form-container {
            background-color: #e8dff0;
            padding: 40px;
            border-radius: 16px;
            width: 100%;
            max-width: 400px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .bankid-logo {
            width: 100px;
            height: 18px;
            margin: 0 auto 32px auto;
            background-image: url(../img/bankid-logo.svg);
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
        }

        h1 {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .input-label {
            font-size: 14px;
            color: #333;
            margin-bottom: 12px;
            display: block;
            text-align: left;
        }

        .input-field {
            width: 100%;
            padding: 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            background-color: white;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }

        .input-field:focus {
            outline: none;
            border-color: #5a3d7a;
        }

        .dropdown {
            cursor: pointer;
            background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 12px;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        .dropdown::-ms-expand {
            display: none;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            text-align: left;
        }

        .checkbox {
            width: 18px;
            height: 18px;
            margin-right: 12px;
            accent-color: #5a3d7a;
        }

        .checkbox-label {
            font-size: 14px;
            color: #333;
            line-height: 1.4;
        }

        .continue-btn {
            width: 100%;
            padding: 16px;
            background-color: #5a3d7a;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-bottom: 20px;
        }

        .continue-btn:hover {
            background-color: #4a2d6a;
        }

        .continue-btn:active {
            transform: translateY(1px);
        }

        .cancel-btn {
            background: none;
            border: none;
            color: #666;
            font-size: 16px;
            cursor: pointer;
            margin-bottom: 30px;
            text-decoration: underline;
        }

        .cancel-btn:hover {
            color: #333;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 4px;
            font-size: 14px;
        }

        .footer-links a {
            color: #5a3d7a;
            text-decoration: underline;
        }

        .footer-links a:hover {
            color: #4a2d6a;
        }

        @media (max-width: 480px) {
            .form-container {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 20px;
            }
        }